home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / filesyst / ncpfs / mars_dos.000 / mars_dos / netpc / makefile.bcc < prev    next >
Encoding:
Makefile  |  1996-06-04  |  875 b   |  46 lines

  1. # makefile DOS BCC for simple NET Client for mars_nwe.
  2. # /****************************************************************
  3. #  * (C)opyright (C) 1993,1996  Martin Stover, Marburg, Germany   *
  4. # ****************************************************************/
  5.  
  6. O = .obj
  7. E = .exe
  8. A = .lib
  9. S = .asm
  10. C = .c
  11.  
  12. INCLUDE=$(BC4)\INCLUDE
  13. LIB=$(BC4)\LIB
  14. CC=bcc -ml -Dmsdos -I$(INCLUDE)
  15. LD=bcc -ml -L$(LIB)
  16. ASFLAGS= -la -mx
  17. AS = tasm
  18. AR = tlib
  19. RM = del
  20.  
  21. ASMODS=  kern$(O)
  22. CCMODS=  tools$(O) netcall$(O) ncpcall$(O) \
  23.          login$(O) map$(O) slist$(O) nwcrypt$(O) \
  24.          nwdebug$(O) nwtests$(O) capture$(O)
  25.  
  26. all:      net$(E)  d
  27. d:        demoprn$(E)
  28.  
  29. net$(E):  net$(O) $(ASMODS) $(CCMODS)
  30.           $(LD) net$(O) @&&|
  31. $(ASMODS)
  32. $(CCMODS)
  33. |
  34.  
  35. demoprn$(E):  demoprn$(O)
  36.           $(LD) demoprn$(O) @&&|
  37. |
  38.  
  39. $(C)$(O):
  40.        $(CC)  -c $*$(C)
  41.  
  42. $(S)$(O):
  43.        $(AS) $(ASFLAGS) $*$(S)
  44.  
  45.  
  46.